Axes are actually a per-tool property, we just adapt devices to the
current tool.
gdk_device_tool_get_serial
gdk_device_tool_get_tool_type
gdk_device_tool_get_hardware_id
+gdk_device_tool_get_axes
<SUBSECTION Standard>
GDK_TYPE_AXIS_USE
return tool->type;
}
+
+GdkAxisFlags
+gdk_device_tool_get_axes (GdkDeviceTool *tool)
+{
+ g_return_val_if_fail (tool != NULL, 0);
+
+ return tool->tool_axes;
+}
GDK_AVAILABLE_IN_ALL
GdkDeviceToolType gdk_device_tool_get_tool_type (GdkDeviceTool *tool);
+GDK_AVAILABLE_IN_ALL
+GdkAxisFlags gdk_device_tool_get_axes (GdkDeviceTool *tool);
+
G_END_DECLS
#endif /* __GDK_DEVICE_TOOL_H__ */